home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xarchie-2.0.9 / weight.h < prev    next >
C/C++ Source or Header  |  1995-06-18  |  363b  |  15 lines

  1. /*
  2.  * weight.h : Routines for ordering hosts by "weight"
  3.  *
  4.  * George Ferguson, ferguson@cs.rochester.edu, 23 Apr 1993.
  5.  * Based on a suggestion from Peter J Nilsson (pjn@ida.liu.se).
  6.  */
  7.  
  8. typedef struct _hostWeightRec {
  9.     char *name;
  10.     int weight;
  11. } HostWeightRec;
  12.  
  13. extern void initHostWeights(),reinitHostWeights();
  14. extern int hostWeight(/* char *host */);
  15.